From 2e8d1aaa791b6a7bcf3aa351a46626cccd6896ed Mon Sep 17 00:00:00 2001 From: Manish Singh Date: Mon, 21 Sep 1998 08:28:53 +0000 Subject: [PATCH] Shut up gcc AND cvs -Yosh --- gtk/.cvsignore | 1 + gtk/gtkcolorsel.c | 14 ++++++-------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/gtk/.cvsignore b/gtk/.cvsignore index 2c9959501e..d02010b697 100644 --- a/gtk/.cvsignore +++ b/gtk/.cvsignore @@ -20,3 +20,4 @@ gtkmarshal.c gtktypebuiltins_ids.c gtktypebuiltins_vars.c gtktypebuiltins_evals.c +gtk.defs diff --git a/gtk/gtkcolorsel.c b/gtk/gtkcolorsel.c index fff42c7cb1..b07d953ae2 100644 --- a/gtk/gtkcolorsel.c +++ b/gtk/gtkcolorsel.c @@ -1293,13 +1293,11 @@ gtk_color_selection_eval_wheel (gint x, gint y, gdouble cx, gdouble cy, gdouble *h, gdouble *s) { - gdouble d, r, rx, ry, l; + gdouble r, rx, ry; rx = ((gdouble) x - cx); ry = ((gdouble) y - cy); - d = (SQR (cy) * SQR (rx) + SQR (cx) * SQR (ry) - SQR (cx) * SQR (cy)); - rx = rx/cx; ry = ry/cy; @@ -1316,11 +1314,11 @@ gtk_color_selection_eval_wheel (gint x, gint y, if (*s == 0.0) *s = 0.00001; else if (*s > 1.0) - { - *s = 1.0; - return 1; - } - return 0; + { + *s = 1.0; + return TRUE; + } + return FALSE; } static void -- 2.30.2